πŸ““ content/pages/til 2022-06-19 001.md by @wilde-at-heart β˜†

Instead of putting a query in my daily template, I can generate a running list of fleeting notes via a default query. I can do the same for a running list of drafts to work on. In the default query section of config.edn:

   {:title "πŸ’‘ FLEETING"
    :query (and (property type fleeting) (not (property tags templates)) (not (task done)))
    :result-transform (fn [result]
                        (sort-by (fn [h]
                                   (get h :block/created-at)) result))
    :collapsed? true
    :breadcrumb-show? false}
   {:title "πŸ“ DRAFTS"
    :query (and (property status draft) (not (property tags templates)))
    :result-transform (fn [result]
                        (sort-by (fn [h]
                                   (get h :block/created-at)) result))
    :collapsed? true
    :breadcrumb-show? false}